@charset "utf-8";

* {
	box-sizing: border-box;
	outline: 0;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100%;
	font-size: 12px;
	font-family: "微软雅黑";
	color: #333;
	overflow-x: hidden;
	background: #ffffff;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
}

ol,
ul,
li {
	list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none;
	color: #333;
	display: inline-block;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
}

img {
	border: 0;
	max-width: 100%;
	vertical-align: middle;
}

select,
input,
textarea {
	border: 0;
	/* font-family: "Arial"; */
	outline: none;
	resize: none;
	box-shadow: none;
}

select {
	background: #FFF;
}

input::-webkit-input-placeholder {
	color: rgb( 160, 169, 186 );
}

input::-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

input:-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea::-webkit-input-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea::-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea:-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}

div,
dl,
dt,
dd,
ol,
ul,
li {
	zoom: 1;
}

caption,
th {
	text-align: left;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

input[type="button"],
input[type="submit"] {
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

input,
textarea {
	box-sizing: border-box;
}

input[type="text"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}


/*合并表格边框，设置边框距为零*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.maxwh {
width:100%;
}
/*清除浮动*/

/*clearfix写在浮动元素的上层*/

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
	font-size: 0;
}

.clearfix {
	*zoom: 1;
}

/*文字对齐*/

.textL {
	text-align: left;
}

.textC {
	text-align: center;
}

.textR {
	text-align: right;
}

.fontWe {
	font-weight: 700;
}
.fontMed{
	font-weight: 500;
}

/*强制换行   禁止换行*/

.break_word {
	word-wrap: break-word;
	word-break: break-all;
}

.keep_all {
	word-break: keep-all;
	white-space: nowrap;
}

/*超出省略号，仅限单行，并且需要设定一个宽度*/

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
}

.ellipsis_2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/*me*/

.wrap {
	width: 1300px;
	margin: 0 auto;
}
.hide {
	display: none;
}

.show {
	display: block;
}

.bg_fff {
	background-color: #fff;
}
.bg_f5{
	background-color: #f5f5f5;
}
.bg-f5f7{
	background-color: #f5f5f7;
}
.bg-bl{
	background-color: rgb( 26, 123, 189 );
}
.bg-or{
	background-color: rgb( 234, 103, 47 );
}
.bg-b2c{
	background-color: #b2c52f;
}
.bg-857{
	background-color: #8576b4;
}
.bg-f7f8{
	background-color: #f7f8f8;
}

/* 间距 */
.mt40{
	margin-top: 40px;
}
.mb30{
	margin-bottom: 30px;
}
.mb50{
	margin-bottom: 50px;
}
.pb50{
	padding-bottom: 50px;
}

.col-fff{
	color: #fff !important;
}
.col-3d5{
	color: #3d53ad !important;
}
/* border */
.bor-t{
	border-top: 1px solid #ededed;
}
.bor-b{
	border-bottom: 1px solid #ededed;
}
.bor-be8{
	border-bottom: 1px solid #e8eaf5;
}

.ul-w3>li{
	width: calc(100% / 3);
	width: -webkit-calc(100% / 3);
	width: -moz-calc(100% / 3);
	float: left;
}
/* 标题 */
.new-top{
	padding: 60px 0px;
	text-align: center;
}
.new-tit{
	font-size: 36px;
	color: rgb( 9, 17, 45 );
}
/******* 状态 ******/

.fl {
	float: left;
}

.fr {
	float: right;
}

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.none {
	display: none;
}

.hidden {
	overflow: hidden;
}
.cont_flex {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.cont_flex_1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/* 鼠标划过图片样式 */

.trans_img img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}
.trans_img img:hover {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	/* opacity: 0.8; */
}
.trans_img2 img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}
.trans_img2 img:hover {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}
/* 弹窗 */
.tan_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#5f000000, endcolorstr=#5f000000);
	z-index: 20;
}
.abs_c {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.fixed_c {
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/* 路径 */
.path-box{
	background-color: #fff;
}
.path{
	/* height: 50px; */
}
.path>a{
	padding-right: 12px;
	background: url(../images/kf.png) no-repeat right center;
	background-size: 4px auto;
	margin-right: 6px;
	font-size: 14px;
	color: #999999;
	line-height: 60px;
}
.path>a:hover{
	text-decoration: underline;
}
.ljtit{
	color: #666666 !important;
}
.path>span{
	font-size: 14px;
	color: #0058a8;
}
/* 页面侧边内容 */
.aside{
	width: 280px;
	background-color: #fff;
}
.aside>ul{
	padding: 10px 25px;
}
.aside>ul>li{
	border-bottom: 1px solid #ebebeb;
}
.aside>ul>li>a{
	display: block;
	font-size: 16px;
	color: rgb( 51, 51, 51 );
	line-height: 60px;
	text-align: left;
	padding-right: 20px;
	background: url(../images/jia1.png) no-repeat right 5px center;
	background-size: 12px 12px;
}
.side-uldow{
	display: none;
}
.side-uldow>li>a{
	font-size: 14px;
	color: #333333;
	line-height: 36px;
}
.side-uldow>li:hover>a,
.side-uldow>li.on>a{
	color: #0058a8;
}
.aside>ul>li:first-child>.side-uldow>li:last-child>a{
	color: #0058a8;
}
.aside>ul>li.on .side-uldow{
	display: block;
}
.aside>ul>li.on>a{
	background: url(../images/jian1.png) no-repeat right 5px center;
	background-size: 12px 2px;
}

.main-box{
	width: 1000px;
	min-height: 1550px;
}

/* 查看更多 */
.ck-more{
	text-align: center;
}
.ck-more>a{
	border-width: 2px;
	border-color: rgb( 222, 223, 226 );
	border-style: solid;
	background-color: rgb( 241, 242, 246 );
	width: 146px;
	height: 38px;
	line-height: 38px;
	border-radius: 50px;
}
.ck-more>a>span{
	font-size: 14px;
	color: #333333;
	padding-right: 24px;
	background: url(../images/ck1.png) no-repeat right center;
	background-size: 15px 15px;
}

/* banner */
.banner>a,
.banner>a>img{
	display: block;
	width: 100%;
}

/*  */
.col-005{
	color: #0058a8 !important;
}
.bg-col1{
	background-color: #5fb124 !important;
}

.bg-col2{
	background-color: #ef0000 !important;
}
/*  */
.case-top {
    background-color: #fff;
}
.case-tit {
    font-size: 30px;
    color: #333333;
    text-align: center;
    padding-bottom: 50px;
}


/* add 关于净信 */
.ind-about{
	width: 100%;
	background: url(../images/bg.jpg) no-repeat center;
	background-size: cover;
	padding: 70px 0px;
}
.iabo-infbox{
	width: 610px;
	padding-right: 60px;
}
.iabo-tit{
	font-size: 34px;
	color: #000;
	line-height: 40px;
}
.iabo-tit>span{
	font-weight: bold;
}
.iabo-sub{
	font-size: 24px;
	/* color: #ffffff; */
	color: #000;
	margin: 60px 0px 20px;
}
.iabo-txt{
	font-size: 16px;
	color: #000;
	line-height: 30px;
}
.iabo-abtn{
	margin-top: 50px;
}
.iabo-abtn>span{
	font-size: 16px;
	/* color: rgba( 255, 255, 255, 0.502 ); */
	color: #000;
	line-height: 30px;
	/*padding-right: 18px;*/
	background: url(../images/abtn1.png) no-repeat right 20px center;
	background-size: 8px 14px;
	border-radius: 50px;
    padding: 15px 40px;
    border: 1px solid #fff;
}

.iabo-spbox{
	width: 590px;
	height: 400px;
	overflow: hidden;
}


/* 友情链接  */
.fri-link{
	margin-top: 20px;
}
.fri-link>span,
.fri-link>a{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	font-size: 14px;
	color: #fff;
	margin-bottom: 8px;
}

	/* 侧边 */
		.yb_conct {
			position: fixed;
			z-index: 9999999;
			top: 200px;
			right: -127px;
			cursor: pointer;
			transition: all .3s ease;
		}
		.yb_bar ul li {
			width: 180px;
			height: 53px;
			font: 16px/53px 'Microsoft YaHei';
			color: #fff;
			text-indent: 54px;
			margin-bottom: 3px;
			border-radius: 3px;
			transition: all .5s ease;
			overflow: hidden;
		}
		.yb_bar .yb_top {
			background: #0058A8 url(../images/fixcont.png) no-repeat 0 0;
		}
		.yb_bar .yb_phone {
			background: #0058A8 url(../images/fixcont.png) no-repeat 0 -57px;
		}
		.yb_bar .yb_QQ {
			text-indent: 0;
			background: #0058A8 url(../images/fixcont.png) no-repeat 0 -113px;
		}
		.yb_bar .yb_ercode {
			/*height:200px;*/
		
			background: #0058A8 url(../images/fixcont.png) no-repeat 0 -169px;
		}
		.hd_qr {
			padding: 0 29px 25px 29px;
		}
		.yb_QQ a {
			display: block;
			text-indent: 54px;
			width: 100%;
			height: 100%;
			color: #fff;
		}
		
		
		.left_xjcplbyzxwz {
			margin-top: 850px;
		  	
		} 
		  .left_xjcplbyzxwz h2 {
			border-bottom: 2px solid #1575ae;
			height: 36px;
			line-height: 36px;
			font-size: 18px;
			font-weight: normal;
			width: 80px;
			text-align: center;
		}
		.left_xjcplbyzxwz ol {
			background: #efefef;
			border: 1px solid #dedede;
			width: 224px;
			padding: 10px 8px;
		}
		.left_xjcplbyzxwz ol li {
			background: url(dian.png) no-repeat left 12px;
			line-height: 24px;
			padding-bottom: 5px;
		}
		
		
		.left_xjcplbyzxwzsf {
			margin-top: 890px;
		  	
		} 
		
		
		  .left_xjcplbyzxwzsf h2 {
			border-bottom: 2px solid #1575ae;
			height: 36px;
			line-height: 36px;
			font-size: 18px;
			font-weight: normal;
			width: 80px;
			text-align: center;
		}
		.left_xjcplbyzxwzsf ol {
			background: #efefef;
			border: 1px solid #dedede;
			width: 224px;
			padding: 10px 8px;
		}
		.left_xjcplbyzxwzsf ol li {
			background: url(dian.png) no-repeat left 12px;
			line-height: 24px;
			padding-bottom: 5px;
		}
		
		
		.left_xjalzs {
			margin-top: 650px;
		  	
		} 
		  .left_xjalzs h2 {
			border-bottom: 2px solid #1575ae;
			height: 36px;
			line-height: 36px;
			font-size: 18px;
			font-weight: normal;
			width: 80px;
			text-align: center;
		}
		.left_xjalzs ol {
			background: #efefef;
			border: 1px solid #dedede;
			width: 224px;
			padding: 10px 8px;
		}
		.left_xjalzs ol li {
			background: url(dian.png) no-repeat left 12px;
			line-height: 24px;
			padding-bottom: 5px;
		}
		
		.left_xjlx {
			margin-top: 600px;
		  	
		} 
		
		 .left_xjlx h2 {
			border-bottom: 2px solid #1575ae;
			height: 36px;
			line-height: 36px;
			font-size: 18px;
			font-weight: normal;
			width: 240px;
		}
		
		.left_xjlx ol {
			background: #efefef;
			border: 1px solid #dedede;
			width: 224px;
			padding: 10px 8px;
		}
		.left_xjlx ol li {
			background: url(dian.png) no-repeat left 12px;
			line-height: 24px;
			padding-bottom: 5px;
		}
		
		.case-anlcen section>img,
		.case-anlcen p>img{
			display: block !important;
			margin: auto !important;
		} 
		
		
	
	